home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP03 / SYSMETS2.C < prev    next >
C/C++ Source or Header  |  1995-12-31  |  5KB  |  151 lines

  1. /*----------------------------------------------------
  2.    SYSMETS2.C -- System Metrics Display Program No. 2
  3.                  (c) Charles Petzold, 1996
  4.   ----------------------------------------------------*/
  5.  
  6. #include <windows.h>
  7. #include <string.h>
  8. #include "sysmets.h"
  9.  
  10. LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ;
  11.  
  12. int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance,
  13.                     PSTR szCmdLine, int iCmdShow)
  14.      {
  15.      static char szAppName[] = "SysMets2" ;
  16.      HWND        hwnd ;
  17.      MSG         msg ;
  18.      WNDCLASSEX  wndclass ;
  19.  
  20.      wndclass.cbSize        = sizeof (wndclass) ;
  21.      wndclass.style         = CS_HREDRAW | CS_VREDRAW ;
  22.      wndclass.lpfnWndProc   = WndProc ;
  23.      wndclass.cbClsExtra    = 0 ;
  24.      wndclass.cbWndExtra    = 0 ;
  25.      wndclass.hInstance     = hInstance ;
  26.      wndclass.hIcon         = LoadIcon (NULL, IDI_APPLICATION) ;
  27.      wndclass.hCursor       = LoadCursor (NULL, IDC_ARROW) ;
  28.      wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
  29.      wndclass.lpszMenuName  = NULL ;
  30.      wndclass.lpszClassName = szAppName ;
  31.      wndclass.hIconSm       = LoadIcon (NULL, IDI_APPLICATION) ;
  32.  
  33.      RegisterClassEx (&wndclass) ;
  34.  
  35.      hwnd = CreateWindow (szAppName, "Get System Metrics No. 2",
  36.                           WS_OVERLAPPEDWINDOW | WS_VSCROLL,
  37.                           CW_USEDEFAULT, CW_USEDEFAULT,
  38.                           CW_USEDEFAULT, CW_USEDEFAULT,
  39.                           NULL, NULL, hInstance, NULL) ;
  40.  
  41.      ShowWindow (hwnd, iCmdShow) ;
  42.      UpdateWindow (hwnd) ;
  43.  
  44.      while (GetMessage (&msg, NULL, 0, 0))
  45.           {
  46.           TranslateMessage (&msg) ;
  47.           DispatchMessage (&msg) ;
  48.           }
  49.      return msg.wParam ;
  50.      }
  51.  
  52. LRESULT CALLBACK WndProc (HWND hwnd, UINT iMsg, WPARAM wParam, LPARAM lParam)
  53.      {
  54.      static int  cxChar, cxCaps, cyChar, cyClient, iVscrollPos ;
  55.      char        szBuffer[10] ;
  56.      HDC         hdc ;
  57.      int         i, y ;
  58.      PAINTSTRUCT ps ;
  59.      TEXTMETRIC  tm ;
  60.  
  61.      switch (iMsg)
  62.           {
  63.           case WM_CREATE :
  64.                hdc = GetDC (hwnd) ;
  65.  
  66.                GetTextMetrics (hdc, &tm) ;
  67.                cxChar = tm.tmAveCharWidth ;
  68.                cxCaps = (tm.tmPitchAndFamily & 1 ? 3 : 2) * cxChar / 2 ;
  69.                cyChar = tm.tmHeight + tm.tmExternalLeading ;
  70.  
  71.                ReleaseDC (hwnd, hdc) ;
  72.  
  73.                SetScrollRange (hwnd, SB_VERT, 0, NUMLINES, FALSE) ;
  74.                SetScrollPos   (hwnd, SB_VERT, iVscrollPos, TRUE) ;
  75.                return 0 ;
  76.  
  77.           case WM_SIZE :
  78.                cyClient = HIWORD (lParam) ;
  79.                return 0 ;
  80.  
  81.           case WM_VSCROLL :
  82.                switch (LOWORD (wParam))
  83.                     {
  84.                     case SB_LINEUP :
  85.                          iVscrollPos -= 1 ;
  86.                          break ;
  87.  
  88.                     case SB_LINEDOWN :
  89.                          iVscrollPos += 1 ;
  90.                          break ;
  91.  
  92.                     case SB_PAGEUP :
  93.                          iVscrollPos -= cyClient / cyChar ;
  94.                          break ;
  95.  
  96.                     case SB_PAGEDOWN :
  97.                          iVscrollPos += cyClient / cyChar ;
  98.                          break ;
  99.  
  100.                     case SB_THUMBPOSITION :
  101.                          iVscrollPos = HIWORD (wParam) ;
  102.                          break ;
  103.  
  104.                     default :
  105.                          break ;
  106.                     }
  107.                iVscrollPos = max (0, min (iVscrollPos, NUMLINES)) ;
  108.  
  109.                if (iVscrollPos != GetScrollPos (hwnd, SB_VERT))
  110.                     {
  111.                     SetScrollPos (hwnd, SB_VERT, iVscrollPos, TRUE) ;
  112.                     InvalidateRect (hwnd, NULL, TRUE) ;
  113.                     }
  114.                return 0 ;
  115.  
  116.           case WM_PAINT :
  117.                hdc = BeginPaint (hwnd, &ps) ;
  118.  
  119.                for (i = 0 ; i < NUMLINES ; i++)
  120.                     {
  121.                     y = cyChar * (1 - iVscrollPos + i) ;
  122.  
  123.                     TextOut (hdc, cxChar, y,
  124.                              sysmetrics[i].szLabel,
  125.                              strlen (sysmetrics[i].szLabel)) ;
  126.  
  127.                     TextOut (hdc, cxChar + 22 * cxCaps, y,
  128.                              sysmetrics[i].szDesc,
  129.                              strlen (sysmetrics[i].szDesc)) ;
  130.  
  131.                     SetTextAlign (hdc, TA_RIGHT | TA_TOP) ;
  132.  
  133.                     TextOut (hdc, cxChar + 22 * cxCaps + 40 * cxChar, y,
  134.                              szBuffer,
  135.                              wsprintf (szBuffer, "%5d",
  136.                              GetSystemMetrics (sysmetrics[i].iIndex))) ;
  137.  
  138.                     SetTextAlign (hdc, TA_LEFT | TA_TOP) ;
  139.                     }
  140.  
  141.                EndPaint (hwnd, &ps) ;
  142.                return 0 ;
  143.  
  144.           case WM_DESTROY :
  145.                PostQuitMessage (0) ;
  146.                return 0 ;
  147.           }
  148.  
  149.      return DefWindowProc (hwnd, iMsg, wParam, lParam) ;
  150.      }
  151.